.mini-acoes-header {
    display: flex;
    gap: 12px;
}
.action-btn {
    background: #000;
    border: 2px solid var(--accent);
    color: var(--accent);
    width: 44px;
    height: 44px;
    cursor: pointer;
    transition: 0.3s;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.action-btn:hover:not(:disabled) {
    background: var(--accent);
    color: #000;
    box-shadow: 0 0 12px var(--accent-glow);
    transform: translateY(-2px);
}
.action-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}
.action-concluir.concluido {
    background: #00aa66;
    color: #000;
    border-color: #00aa66;
}
.action-favoritar.favoritado {
    color: #ff3366;
    border-color: #ff3366;
    text-shadow: 0 0 8px #ff3366;
}